VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging Namespace / Thumbnail Class / Render Methods / Render(Int32,Int32,EventHandler<ProgressEventArgs>) Method
Syntax Requirements SeeAlso
In This Topic
    Render(Int32,Int32,EventHandler<ProgressEventArgs>) Method (Thumbnail)
    In This Topic
    Renders a thumbnail image with specified size and adds the thumbnail image to the thumbnail cache.
    Syntax
    'Declaration
    
    Public Overloads Function Render( _
    ByVal width
    Width of the thumbnail image.
    As System.Int32, _
    ByVal height
    Height of the thumbnail image.
    As System.Int32, _
    ByVal progressDelegate
    Progress delegate.
    As System.EventHandler(Of ProgressEventArgs) _
    ) As Boolean
    public bool Render(
    System.Int32 width,
    System.Int32 height,
    System.EventHandler<ProgressEventArgs> progressDelegate
    )
    public: bool Render(
    System.Int32 width,
    System.Int32 height,
    System.EventHandler<ProgressEventArgs*>* progressDelegate
    )
    public:
    bool Render(
    System.Int32 width,
    System.Int32 height,
    System.EventHandler<ProgressEventArgs^>^ progressDelegate
    )

    Parameters

    width
    Width of the thumbnail image.
    height
    Height of the thumbnail image.
    progressDelegate
    Progress delegate.

    Return Value

    False if rendering is canceled; otherwise, true.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also